home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / assert.h < prev    next >
C/C++ Source or Header  |  1990-11-06  |  2KB  |  68 lines

  1. /*
  2.  * assert.h --
  3.  *
  4.  *  Definition of assert() macro.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /sprite/src/lib/include/RCS/assert.h,v 1.6 90/11/06 17:21:14 rab Exp $
  16.  */
  17.  
  18. #include <cfuncproto.h>
  19.  
  20. #ifdef assert
  21. #undef assert
  22. #endif
  23.  
  24. #ifdef _assert
  25. #undef _assert
  26. #endif
  27.  
  28. #ifndef NDEBUG
  29. #ifdef KERNEL
  30. #ifdef __STDC__
  31.  
  32. #define _assert(ex) { if (!(ex)) { panic(\
  33.     "Assertion failed: (" #ex ") file \"%s\", line %d\n", __FILE__, __LINE__);}}
  34.  
  35. #else /* __STDC__ */
  36.  
  37. #define _assert(ex) { if (!(ex)) { panic(\
  38.     "Assertion failed: file \"%s\", line %d\n", __FILE__, __LINE__);}}
  39. #endif /* __STDC__ */
  40.  
  41. #else /* KERNEL */
  42.  
  43. _EXTERN void __eprintf _ARGS_ ((_CONST char *string,
  44.     int line, _CONST char *filename));
  45.  
  46. #ifdef __STDC__
  47.  
  48. #define _assert(ex) { if (!(ex)) { __eprintf( \
  49.     "Assertion failed: (" #ex ") line %d of \"%s\"\n", __LINE__, __FILE__);\
  50.     abort();}}
  51.  
  52. #else /* __STDC__ */
  53.  
  54. #define _assert(ex) { if (!(ex)) { __eprintf( \
  55.     "Assertion failed: line %d of \"%s\"\n", __LINE__, __FILE__);\
  56.     abort();}}
  57.  
  58. #endif /* __STDC__ */
  59.  
  60. #endif /* KERNEL */
  61.  
  62. # define assert(ex)    _assert(ex)
  63. # else  /* !NDEBUG */
  64. # define _assert(ex)
  65. # define assert(ex)
  66. # endif /* !NDEBUG */
  67.  
  68.